home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / sviluppo / svilupp2 / gmsppr10.lha / SPRT.h < prev    next >
C/C++ Source or Header  |  1996-08-23  |  567b  |  29 lines

  1. #ifndef SPRT_H
  2. #define SPRT_H
  3.  
  4. #ifndef EXEC_TYPES_H
  5. #include <exec/types.h>
  6. #endif
  7.  
  8. /************************************************************************/
  9.  
  10. struct SPRT
  11. {
  12.   UWORD Original;
  13.   UWORD Flags;
  14. };
  15.  
  16. /************************************************************************/
  17.  
  18. #define SPRTF_VERTICAL        (1<<0)
  19. #define SPRTF_HORIZONTAL    (1<<1)
  20. #define SPRTF_COPY        (1<<2)
  21. #define SPRTF_NOMASK        (1<<3)
  22. #define SPRTF_NOIMAGE        (1<<4)
  23.  
  24. #define SPRTF_ORIGINAL        (1<<15)
  25.  
  26. /************************************************************************/
  27.  
  28. #endif  /* SPRT_H */
  29.